POST
/
v1
/
receiving
/
{type}
/
{id}
Put Away Delivery Items
curl --request POST \
  --url https://{client_id}.shipstream.app/api/global/v1/receiving/{type}/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "dryRun": true,
  "allowOutOfOrder": true,
  "items": [
    {
      "item": {
        "type": "DeliveryItem",
        "id": 123
      },
      "location": {
        "type": "Location",
        "id": 52
      },
      "Lot": {
        "type": "Lot",
        "id": 52
      },
      "amount": 54
    }
  ]
}'
{
  "results": [
    {
      "type": "DeliveryItemLocation",
      "id": 3,
      "location": {
        "type": "Location",
        "id": 42
      },
      "qty_putaway": 123,
      "qty_committed": 123
    }
  ],
  "putaway_complete": true,
  "committed": true,
  "out_of_order": true
}

Path Parameters

type
enum<string>
required

Specify the delivery type to which your operations will be restricted.

Available options:
asn,
rma
id
integer
required

The id of the Delivery to put away items.

Body

application/json

An object conforming to the Delivery schema to put away items.

The body is of type object.

Response

200
application/json

An object conforming to the Delivery schema to put away items.

The response is of type object.